home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games: Greatest Hits 1996 / Amiga Games: Greatest Hits 1996.iso / rexx / dt_quick.rexx < prev    next >
OS/2 REXX Batch file  |  1994-04-15  |  222b  |  19 lines

  1. /* DeliTracker - toggles quickstart */
  2.  
  3. address 'DELITRACKER'
  4.  
  5. options results
  6.  
  7.  
  8. status G qst
  9.  
  10. if result == "no" then do
  11.     quick yes
  12.     say "Quickstart is now on..."
  13. end
  14. else do
  15.     quick no
  16.     say "Quickstart is now off..."
  17. end
  18.  
  19.